Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
sagemathinc
GitHub Repository: sagemathinc/cocalc
Path: blob/master/src/packages/next/pages/redeem/[id].tsx
1450 views
1
/*
2
* This file is part of CoCalc: Copyright © 2023 Sagemath, Inc.
3
* License: MS-RSL – see LICENSE.md for details
4
*/
5
/*
6
* This file is part of CoCalc: Copyright © 2023 Sagemath, Inc.
7
* License: MS-RSL – see LICENSE.md for details
8
*/
9
10
import withCustomize from "lib/with-customize";
11
import Redeem from "../redeem";
12
export default Redeem;
13
14
export async function getServerSideProps(context) {
15
const { id } = context.params;
16
return await withCustomize({ context, props: { id } });
17
}
18
19